The iPod revolutionized the way we consume music. The iPhone made us crazy for apps. And now the iPad is getting ready to rock our love lives—or at least help improve our search for someone to communicate with. In late May, Skout.com will become the first dating site to launch an iPad application. The free app will be similar to the version that’s already available to phone users: members can enter search criteria, such as age range, gender and physical preferences, and a HotMap will show in real time the locations of active Skout users who fit those criteria. The idea is to help members meet up and see if magic happens. The cool thing about the iPad adaptation, says CEO Christian Wiklund, is that its screen is large enough to let the user view the map while simultaneously chatting and searching through another member’s photos. David Evans, editor of onlinedatingpost.com, says we can expect to see more innovative technology in a few months after companies get acquainted with the capabilities of the iPad. "What I’m looking for are dating sites that are optimized for the iPad, with features native to the sleek computing device like (touch screen motions such as) pinch, twist, zoom and shake," he says. "It’s the iPad that’s going to enable developers to create entirely new ways to browse, discover and connect with singles." Steve Odom, CEO and founder of dating site Gelato, which launched last year and includes a live feed of members’ social-media profiles, is redesigning his entire website based on the iPad’s appearance. Profile pictures play a key role in online dating, Odom says, and the iPad gives sites an opportunity to play up the presentation of their clientele. "It’s big, it’s beautiful, and it’s perfect for dating sites," says Odom, who plans to unveil the redesign in June. Evans predicts that online dating sites will begin to display their content like a magazine, letting users flip through pages of profiles and enlarge photos while simultaneously texting with one or more others. He says there’s also been talk of adding a facial-coding and eye-tracking function that would use a webcam on the iPad to refine suggested matches based on a member’s responses to certain profiles. If you grimace, the profile will fade away; if you smile or if your pupils dilate, similar profiles will be suggested. In other words, some day there could be an iPad app for love at first sight. According to David Evans, it’ll be possible that______.
A. iPad becomes the beautiful tool for people to surf the web
B. dating site developers create more ways for people to know each other
C. iPad will be developed to suit the needs of the dating websites
D. developers of iPad will add more features to the device
使用VC6打开考生文件夹下的工程test23_1,此工程包含一个源程序文件test23_1.cpp,但该程序运行有问题,请改正程序中的错误,使程序的输出结果如下: i iz O 12 22 源程序文件test23_1.cpp清单如下: #include<iostream.h> #include<stdio.h> class innerclass int x; public: /****************found*******************/ innerclass(int z) x=z; cout<<"iz"<<endl;; /****************found*******************/ void write( ) print("%d\n",x); class outerclass int y; innerclass g; innerclass *h; public: outerclass(int a); void write( ) printf("%d\n",y); void write_inner_g() g.write(); void write_inner_h() h->write(); ; outerclass::outerclass(int a) /****************found*******************/ h=new innerclass(12); cout<<"o"<<endl; int main ( ) outerclass ob(22); ob.write_inner_h(); ob.write(); return 1;