摘要:
1. 打开Visual C++6.0 , 点击文件(file),新建(new),选择项目(Projects)里面的MFC AppWizard(exe),输入文件名,OK。在弹出的对话框中选择单文档(Single document),完成(finish),OK。这样一个MFC项目就建立好了。2. 编译运行下吧,我们可以看到如下的界面。3. 在左边的类视图中,我们可以看到系统自动给我们建立了五个类。CAboutDlg-----------和对话框有关,帮助类CMainFrame---------框架类CSrApp---------------应用类主函数CSrDoc---------------文 阅读全文
摘要:
Descriptioncalmound一回来就突然离奇失踪了,后来发现原来是偷偷地躲在了妹子群中。你能不能找到他,把他抓回来做题呢?Input输入包含多组数据,直到文件EOF结束。每组数据给你一个字符串,字符串长度using namespace std;#include int main(){ string a; while(cin>>a) { int t; t=a.length(); int j,i; bool prime; prime=false; for(i=0;i<t;i++) ... 阅读全文
摘要:
Description 小Q,2012年9月10日步入大学。刚刚步入大学的小Q,依旧怀念着以前的生活,所以他每天都会计算现在离刚刚开学过去了多少天。可是某一天,突发奇想,想问你,给你n天,让你计算2012年9月10日后的n天是几年几月几日,比如n=10,则日期是2012年9月20日。这里你要注意可能会出现闰年的情况Input第一行一个整数T,表示有T组数据。每组数据输入一个n(nusing namespace std;int main(){ int T; int i; cin>>T; for(i=1;i>days; int j; for(j... 阅读全文
摘要:
Description现在有一种只包括左右小括号(“(”和“)”)和空格(” “)的字符串序列,请你判断括号是否匹配,如果匹配就输出Yes,不匹配输出No。Input输入数据第一行输入一个T(0≤T≤100),表示测试数据的组数。接下来有T行测试数据,每行有一个符合题意的字符串,字符串长度不超过500。Output每组测试数据,先输出一个”Case %d:“,%d表示第几组测试数据。接着,如果字符串括号匹配,输出Yes,否则,输出No。具体输出格式参考下面输出样例。Sample Input2( ()))(Sample OutputCase 1:YesCase 2:No解题思路:一开始以为只要输 阅读全文
摘要:
Problem DescriptionGiven a sequence a[1],a[2],a[3]......a[n], your job is to calculate the max sum of a sub-sequence. For example, given (6,-1,5,4,-7), the max sum in this sequence is 6 + (-1) + 5 + 4 = 14.InputThe first line of the input contains an integer T(1using namespace std;int a[100002];//用来 阅读全文
摘要:
题目描述Cainiao is a university student who loves ACM contest very much. It is a festival for him once when he attends ACM Asia Regional Contest because he always can find some famous ACMers there.Cainiao attended Asia Regional Contest Fuzhou Site on November 20, 2011. After he got seat map, he wanted t 阅读全文
摘要:
题目描述All brave and intelligent fighters, next you will step into a distinctive battleground which is full of sweet and happiness. If you want to win the battle, you must do warm-up according to my instructions, which can make you in the best state preparing to fight. Now please relax yourself and enj 阅读全文
摘要:
代码:Example9_8.javapublic class Example9_8{ public static void main(String args[]){ WindowOperation win = new WindowOperation(); win.setBounds(100,100,390,360); win.setTitle("简单计算器"); }}WindowOperation.javaimport java.awt.*;import javax.swing.*;import java.io.*;public class WindowOperation 阅读全文
摘要:
代码:Example9_7.javapublic class Example9_7{ public static void main(String args[]){ WindowActionEvent win= new WindowActionEvent(); PoliceListen police = new PoliceListen();//创建监视器 win.setMyCommandListener(police); win.setBounds(100,100,460,360); win.setTitle("处理ActionEvent事件"); }}WindowAct 阅读全文