首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴旋风之间的代码贴全部
#include <stdio.h>
#include<stdlib.h>
int main(void)
{     
    char a='0';//c语言定义变量要放在首位
    printf("\n是否登录QQ?\n");
    there:printf("(Y or N ?)\n");
    scanf("%c",&a);    //因为你要输入的是字符,而不是字符串 
    switch(a)
    {
    case 'y':case 'Y':
        printf("\n正在启动腾讯QQ登录界面,请稍候......\a\a\n");
......................
阅读全部 | 2012年12月4日 00:02
#include<iostream>
using namespace std;
int max (int x,int y);
int main()
{
    int a,b,c,m1,m2;
    cout<<"input a,b,c,:\t";
    cin>>a>>b>>c;
    m1=max(a,b);
    m2=max(m1,c);
    cout<<"max="<<m1<<m2;//这还是改改吧,太丑啦
    return 0;//这要加,记住你的返回值
......................
阅读全部 | 2012年12月3日 23:41
1
旋风之间