摘要:
题1 下列的( )不是C语言合法的标识符。 A) main B) define C) sqrt D) const E) Long F) β G) delta H) __LINE_NO__ I) sizeof J) type K) msgNo L) last name M) 3xg N) _3xg O 阅读全文
摘要:
题目 #include<iostream> #include<string> #include<map> #include<algorithm> using namespace std; struct stu { string id; int place; int score; int rank; 阅读全文
摘要:
#include <stdio.h> int main() { int a=8,b=5,c=3,d=2; if (a<b<c<d) putchar('A'); else putchar('B'); printf("%d,%d,%d,%d\n",a,b,c,d); if (a=b=c) putchar 阅读全文