Search found 1 match

by bam
Fri Oct 03, 2008 12:06 pm
Forum: Volume 7 (700-799)
Topic: 706 - LCD Display
Replies: 221
Views: 65520

Re: 706 - LC-Display

Hello! Please tell me why I got TLE????
It doesn't work only when n>=100 000 000(more than 8 digits). But it isn't in task.
#include <stdio.h>
#include <string.h>

using namespace std;

int main(){
int s;
while(scanf("%d",&s) && s!=0){
char n[8];
char ch;
int k=0;
getc(stdin);
while((ch ...

Go to advanced search