一个难编的程序!!!
有 7个人排成一排,循环报数,用C语言编写程序(随便说一个数要知道这个数是哪个人报的)。比如:A B C D E F G1 2 3 4 5 6 7
13 12 11 10 9 8
14 15 16 17 18 19
[此贴子已经被作者于2005-3-21 19:26:15编辑过]
#include <iostream.h>
void main(){ int n; char ch; cout<<"please input an integer!\n"; cin>>n; if (n<=0) return; else if (n<7){ ch = 'A'+n-1; cout<<endl<<ch<<endl; } else if(0 == (n-7)/6%2){ ch = 'G'-(n-7)%6; cout<<endl<<ch<<endl; } else { ch = 'A'+(n-7)%6; cout<<endl<<ch<<endl; } } 用C++编的,应该可以通过!
[此贴子已经被作者于2005-3-22 1:44:39编辑过]